home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 2000 July / macformat-092.iso / Broderbund Demo / DemoData / dialog / dPrintP.Dxr / 00001.ls next >
Encoding:
Text File  |  1997-08-22  |  541 b   |  27 lines

  1. global gDialogButs, gDialog
  2.  
  3. on startMovie
  4.   set gDialogButs to new(script "buttonMan", [2, 3], ["dialogYes", "dialogNo"])
  5.   setDownList(gDialogButs, ["dialogYesD", "dialogNoD"])
  6.   setOverList(gDialogButs, ["dialogYesR", "dialogNoR"])
  7.   setState(gDialogButs, 1)
  8. end
  9.  
  10. on cleanup
  11.   set the actorList to []
  12.   set gDialogButs to EMPTY
  13.   set gDialogObjName to EMPTY
  14. end
  15.  
  16. on action theButton
  17.   tell the stage
  18.     hide(gDialog)
  19.   end tell
  20.   tell the stage
  21.     handle(gDialog, theButton)
  22.   end tell
  23.   tell the stage
  24.     closeDialog()
  25.   end tell
  26. end
  27.